home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ETO Development Tools 4
/
ETO Development Tools 4.iso
/
Tools - Objects
/
E.T.O. #4 Installer
/
Startup
< prev
next >
Wrap
Text File
|
1991-05-23
|
2KB
|
64 lines
# I N S T A L L A T I O N S T A R T U P S C R I P T
#
# Copyright Apple Computer, Inc. 1987, 1988, 1989, 1990, 1991
# All rights reserved.
#
# This script is used to install MPW, SADE, MacsBug, ResEdit, MacApp, C++ and 411
# from the distribution compact disk onto a destination hard disk. This installer
# can also update a previous version of any of the above to a later version level
# or revert from any version to an earlier version.
# Export some built-in Shell variables.
# {Boot} - The boot disk. (Predefined.)
Export Boot
# {SystemFolder} - The directory that contains System & Finder. (Predefined.)
Export SystemFolder
# {ShellDirectory} - The directory that contains MPW Shell. (Predefined.)
Export ShellDirectory
# {Active} - The active (topmost) window. (Predefined.)
Export Active
# {Target} - The target (previously active) window. (Predefined.)
Export Target
# {Worksheet} - The name of the Worksheet window. (Predefined.)
Export Worksheet
# {Status} - The result of the last command executed. (Predefined.)
Export Status
# {Commando} - the Commando tool and support
Export Windows
Export Aliases
Set Commando Commando
Export Commando
### Start the main Installer loop
Loop ### Call the Install script via the Commando Interface
Install…
Confirm -t "Another Installation?" ∂
"Click “Yes” to perform additional installations" ∂
"or “No” to exit the MPW installation process."
Break if {Status} != 0
End
#
Alert "Installation complete! The Installer will now quit. You " ∂
"may remove the Installation Folder from your hard drive."
Quit -n
Exit 0